home *** CD-ROM | disk | FTP | other *** search
/ Core Concepts in Art 2 / Core Concepts in Art (Frames of Reference)(The McGraw-Hill Companies)(2004).iso / mac / media / create.swf / scripts / DefineButton2_27 / BUTTONCONDACTION on(release).as next >
Text File  |  2003-11-06  |  353b  |  13 lines

  1. on(release){
  2.    if(_parent.holder_mc._y > (_parent._parent.questionBuilder_mc.titleArray.length - 11) * 20 * -1 + scroll_btn._height / 2)
  3.    {
  4.       scroll_btn._y += scroll_btn._height;
  5.       _parent.holder_mc._y -= 20;
  6.    }
  7.    else
  8.    {
  9.       scroll_btn._y = 163 - scroll_btn._height;
  10.    }
  11.    _parent._parent._parent.scrollPos = this._y;
  12. }
  13.